home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
tools
/
czesc_4
/
smallmath
/
install_libs
< prev
next >
Wrap
Text File
|
1993-01-24
|
1KB
|
55 lines
.K ""
; Script to copy the small math libraries into libs:
Echo "This script will copy the mathieeesingtrans.library,"
Echo "mathieeedoubbas.library, and mathieeedoubtrans.library from this"
Echo "package into your LIBS: directory. These libraries are intended for"
Echo "use *only* on machines with a 68881 or 68882 math coprocessor or a"
Echo "68040 main processor. They will fail miserably and surely crash your"
Echo "machine if you do not have one of those processors installed."
Ask "*NDo you wish to continue?"
If NOT WARN
Echo "Aborting operation. No action taken."
Skip Exit
EndIf
Echo "*NPlease ensure that you are working with a copy of your Workbench disk,"
Echo "as this procedure will delete the current versions of the above-named"
Echo "libraries from your LIBS: drawer."
Ask "*NDo you wish to continue?"
If NOT WARN
Echo "Aborting operation. No action taken."
Skip Exit
EndIf
Echo "*N"
Copy libs/mathieeesingtrans.library LIBS:
If ERROR
Echo "Error copying mathieeesingtrans.library. Aborting."
Skip Exit
EndIf
Echo "Mathieeesingtrans.library copied."
Copy libs/mathieeedoubbas.library LIBS:
If ERROR
Echo "Error copying mathieeedoubbas.library. Aborting."
Skip Exit
EndIf
Echo "Mathieeedoubbas.library copied."
Copy libs/mathieeedoubtrans.library LIBS:
If ERROR
Echo "Error copying mathieeedoubtrans.library. Aborting."
Skip Exit
EndIf
Echo "Mathieeedoubtrans.library copied."
Echo "*NOperation successful. Exiting."
Lab Exit
Quit